| RegisterTestSuites Routine |
Unit
TestFramework
Declaration
Procedure RegisterTestSuites(SuitePath :string; const classes :array of TTestCaseClass);
| Parameters |
| path | Indicates a path of tests suites to register the test under. |
| Tests | The series of tests to register. |
See Also

procedure RegisterTestSuites(SuitePath :string; const classes :array of TTestCaseClass); var i :Integer; begin for i := Low(classes) to High(classes) do begin TestFramework.RegisterTest(SuitePath, classes[i]) end End; |
|
|